190951a86f11490b8e2c0c034c4c5f7e07374aea,src/net/java/sip/communicator/impl/gui/main/contactlist/ContactList.java,ContactList,setShowOffline,#boolean#,1112
Before Change
int newListSize = listModel.getSize();
listModel.contentRemoved(newListSize - 1, listSize - 1);
listModel.contentChanged(0, newListSize - 1);
}
/**
After Change
int newListSize = listModel.getSize();
if(listSize > 0 && newListSize > 0)
{
listModel.contentRemoved(newListSize - 1, listSize - 1);
listModel.contentChanged(0, newListSize - 1);
}
}